Pancake
The pancake programming language is a stack machine language with the following characteristics.
- There are two instruction streams: commented and un-commented.
- Users can conditionally (
flip_if) or unconditionally (flip) switch between them. - The execution continues from the beginning when it reaches the end.
Try our demo here!
Build
To build and run the pancake development environment perform the following.
- Install node and npm
- Run
npm install - Run
npm run dev - Visit
http://localhost:1234
Instructions
- Push number (e.g.
1,2) - Add (
+) - Less Than (
<) - Flip (
flip) - Flip If (
flip_if) - Halt (
halt)